Skip to main content

All Questions

0votes
1answer
87views

ajax search and scraping prices of bus page // maybe selenium?

I am trying to get prices of routes on a bus page import requests from bs4 import BeautifulSoup import re popup_linkz= list() p=range(1, 2, 1) for i in p: ...
kcomarks's user avatar
0votes
0answers
643views

Selenium Chromedriver error - receiver class does not define or inherit an implementation of the resolved method abstract createArgs()

I am trying to open chrome driver using selenium but it is giving me this error. This is the first project that this error is popping up for me as I've had a different project that used selenium and ...
NoobCoder's user avatar
0votes
3answers
2kviews

How to fix [WARNING]: Timed out connecting to Chrome, retrying

I access Websites in a loop via selenium Java based. Some of the sites crash imediately so that i get the error [1618982990.911][WARNING]: Timed out connecting to Chrome, retrying... after a short ...
Roo's user avatar
  • 13
1vote
1answer
2kviews

Selenium chromedriver detected and blocked by website

I'm trying to scrape a website using Selenium chromedriver on java. I can't load the page because it's detecting me as a bot. The google Chrome Browser and chromedriver versions are correct. I tried ...
Desesperado's user avatar
1vote
0answers
84views

Is there any way to make ChromeDriver less detectable? [duplicate]

I have been using selenium and web driver for making a very simple bot, and some websites are blocking me at the door. I was wondering if there was any way to modify my chrome driver to make it less ...
noahbern's user avatar
2votes
2answers
1kviews

Loop through page links in div and click each link containing a specific value in Selenium (java)

I have a html page that has a section which is structured like this: <section id="fl-results" class="fl-results-revenue"> <li data-tab="details" class="ui-state-default ui-corner-top" ...
gunner's user avatar
0votes
1answer
894views

How to get page source as it is in browser and not in view page using selenium

I know that driver.getPageSource() gets you the web page as Html but the issue I am having is that the site I am testing puts data in brackets like {{OriginDescription}}, maybe using some js framework ...
gunner's user avatar
0votes
0answers
694views

Java Selenium Run ChromeDriver like a manually human [duplicate]

I have been working with Selenium and ChromeDriver. There is a page, which apparently detects that it is a scraper and responds to the URLs with 403 Forbbiden, to solve this I used the following to "...
Elias Vargas's user avatar
0votes
1answer
3kviews

Proxy is not working in chromeOptions in webDriver with selenium in Java

I'm using proxy in chrome driver but is it not working it is showing my local network only instead of proxy network. Proxy proxy = new Proxy(); proxy.setProxyType(Proxy.ProxyType.MANUAL); proxy....
Nilesh Sodha's user avatar
0votes
2answers
767views

selenium webdriver does not find the correct number of elements

Initially, I posted my question here: Extracting content from a dynamic web site using a Java Library Then, after reading and applying the info from the question below: Selenium Webdriver : not ...
Alex Mi's user avatar
  • 1,459
2votes
1answer
73views

Getting the old value of a table element, how can I get the new value?

I am trying to scrape some data from the site whoscored.com. (https://www.whoscored.com/Regions/81/Tournaments/6/Seasons/7406/Stages/16428/PlayerStatistics/Germany-Bundesliga-II-2018-2019) I click on ...
lee's user avatar
  • 23
0votes
1answer
525views

Runnable inside for-loop

I want to run a code inside a for-loop in a thread because it almost will do the same but for different pages (with selenium webdriver). My Problem is, that my counter variable cannot increase because ...
b0ss's user avatar
  • 119
1vote
2answers
923views

How do you wait for an element in a dynamic web table?

I enter a value into a search box and then the web table starts loading its values based on the search. I do not go to a new page nor is the page itself refreshing, meaning we are still on the same ...
Fjodor's user avatar
0votes
1answer
159views

Traversing a Table & Clicking Links Within Using Selenium

I am trying to traverse through a table using Selenium in Java (currently using the chromedriver). The content of the table consists of different people with links to their profiles, for each person ...
Fjodor's user avatar
1vote
1answer
263views

The website doesn't show information in chromedriver/geckodriver (Selenium)

I have been trying to scrap https://wizzair.com/en-gb/flights/timetable#/. It went well for some time. But since today, I can't achieve flight information, as the Wizz server doesn't return anything, ...
Dmitry's user avatar

153050per page
close